performAccessibilityAction

open fun performAccessibilityAction(@NonNull host: View, action: Int, @Nullable args: Bundle): Boolean(source)

Performs the specified accessibility action on the view. For possible accessibility actions look at AccessibilityNodeInfoCompat.

The default implementation behaves as View#performAccessibilityAction(int, Bundle) for the case of no accessibility delegate been set.

Return

Whether the action was performed.

Parameters

host

View on which to perform the action.

action

The action to perform.

args

Optional action arguments.

See also

View#performAccessibilityAction(int, Bundle)